/* ==========================================================================
   GLOBAL DESIGN TOKENS & CANVAS SETUP
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'League Spartan', sans-serif;
    background-color: #FEFAF8;
    color: #130F3B;
    overflow-x: hidden;
}

.section-container {
    max-width: 1420px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Stable visibility logic for incomplete local media objects */
img[src=""], img:not([src]) {
    background-color: rgba(255, 110, 39, 0.08);
    border-radius: 12px;
    min-height: 30px;
    display: inline-block;
}

/* ==========================================================================
   TEXT ANIMATION KEYFRAME ENGINE DEFINITIONS
   ========================================================================== */
@keyframes textRevealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ==========================================================================
   MASTER INTERACTION NAVBAR SYSTEM (EXACT REPLICATION OF INDEX)
   ========================================================================== */
.navbar {
    width: 100%;
    height: 94px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    padding-left: -4px;
    padding-right: 55px;
    z-index: 100;
}

.logo img {
    width: 160px;
    margin-top: -5px;
    margin-left: 64px;
}

/* GLOBAL TOGGLE PRESENTATION DEFAULTS */
.menu-toggle {
    display: none; 
}

/* NAV LINKS */
.nav-links {
    width: 650px;
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 40px;
    gap: 30px;
    padding-top: 2px;
    margin-top: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    
    margin-top: 15px;
    margin-right: auto; 
    margin-left: 380px;  
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
}

.nav-links a.active-nav, .nav-links a:hover {
    color: #FF6E27;
}

/* TALK BTN */
.talk-btn {
    width: 180px;
    height: 55px;
    border: none;
    border-radius: 35px;
    background: #13113C;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.talk-btn:hover {
    transform: translateY(-3px);
}

/* ==========================================================================
   SECTION 1: HERO CAPTURE AREA (STAGGERED ANIMATIONS APPLIED)
   ========================================================================== */
.about-hero-section {
    width: 100%;
    padding: 180px 0 100px 0;
    background: linear-gradient(180deg, #FFA973 0%, #FEFAF8 100%);
}

.hero-split-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left-content {
    flex: 1.1;
}

.mini-brand-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #FD5A21;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    margin-top: -42px;
    
    /* Animation Trigger */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
}

.branding-tagline {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #130F3B;
    margin-bottom: 25px;
    
    /* Animation Trigger */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.25s;
}

.branding-tagline span {
    color: #FF6E27;
}

.branding-paragraph {
    font-size: 20px;
    line-height: 32px;
    color: #555555;
    margin-bottom: 40px;
    max-width: 600px;
    
    /* Animation Trigger */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.4s;
}

.hero-buttons-row {
    display: flex;
    gap: 20px;
    
    /* Animation Trigger */
    animation: textRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.55s;
}

.explore-btn {
    background: #FD5A21;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 34px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(253, 90, 33, 0.2);
    transition: all 0.25s ease;
}

.explore-btn:hover {
    background-color: #E24B15;
    transform: translateY(-2px);
}

.contact-outline-btn {
    background: transparent;
    color: #130F3B;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 34px;
    border: 1.5px solid #FD5A21;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-outline-btn:hover {
    background-color: #FD5A21;
    color: #ffffff;
}

.arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid currentColor;
    font-size: 11px;
    margin-left: 5px;
}

.hero-right-graphic {
    flex: 0.9;
    display: flex;
    justify-content: flex-end;
    
    /* Graphic Canvas Smooth Fade/Slide Entry Trigger */
    animation: imageFadeInRight 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.25s;
}

.main-image-frame {
    position: relative;
    max-width: 540px;
    width: 100%;
}

.hero-main-photo {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 45px rgba(19, 15, 59, 0.05);
}

.excellence-floating-badge {
    position: absolute;
    bottom: 35px;
    left: -35px;
    background: #ffffff;
    border-radius: 24px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 110, 39, 0.1);
}

.excellence-floating-badge h3 {
    font-size: 44px;
    font-weight: 800;
    color: #FF6E27;
    line-height: 1;
}

.excellence-floating-badge p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #130F3B;
}

/* ==========================================================================
   SECTION 2: FLOATING MILESTONES SCORE GRIDS
   ========================================================================== */
.stats-banner-section {
    padding: 20px 0 60px 0;
}

.stats-card-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 35px;
    box-shadow: 0 20px 60px rgba(253, 90, 33, 0.03);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    border: 1px solid #F6EDE8;
}

.stat-node {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #FFF2EC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.stat-icon-circle img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.stat-node h3 {
    font-size: 36px;
    font-weight: 800;
    color: #FF6E27;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-node p {
    font-size: 15px;
    font-weight: 600;
    color: #666666;
}

/* ==========================================================================
   SECTION 3: MISSION & VISION ALIGNMENT BLOCKS
   ========================================================================== */
.mission-vision-section {
    padding: 60px 0 90px 0;
}

.mission-vision-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.mission-left-text {
    flex: 1;
}

.section-sub-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FF6E27;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 14px;
}

.mission-left-text h2 {
    font-size: 46px;
    font-weight: 800;
    color: #130F3B;
    margin-bottom: 25px;
}

.mission-left-text h2 span {
    color: #FF6E27;
}

.mission-left-text p {
    font-size: 18px;
    line-height: 28px;
    color: #555555;
    margin-bottom: 22px;
}

.mission-right-cards {
    flex: 1.1;
    display: flex;
    gap: 24px;
}

.mv-card {
    flex: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.015);
    border: 1px solid #F0F0F0;
}

.mv-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon-box.orange-tint {
    background-color: #FD5A21;
}

.mv-icon-box img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.mv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FF6E27;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15.5px;
    line-height: 24px;
    color: #666666;
}

/* ==========================================================================
   SECTION 4: WHAT WE DO MODULE ARCHITECTURE
   ========================================================================== */
.what-we-do-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 46px;
    font-weight: 800;
    margin-top: 6px;
}

.section-header-centered h2 span {
    color: #FF6E27;
}

.header-underline {
    width: 60px;
    height: 3px;
    background-color: #FF6E27;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.solutions-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: #FEFAF8;
    border-radius: 24px;
    padding: 45px 30px;
    border: 1px solid #F5EDE8;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(253, 90, 33, 0.04);
}

.sol-icon-holder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFF0EB;
    color: #FF6E27;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.sol-icon-holder img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.solution-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #130F3B;
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 25px;
    min-height: 72px;
}

.sol-learn-more {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #FF6E27;
    text-decoration: none;
}

/* ==========================================================================
   SECTION 5: WHY CHOOSE US & TIMELINE CHANNELS PIPELINE
   ========================================================================== */
.why-process-combined-section {
    padding: 90px 0;
}

.dynamic-split-layout {
    display: flex;
    gap: 60px;
}

.why-choose-column {
    flex: 1;
}

.header-underline-left {
    width: 45px;
    height: 3px;
    background-color: #FF6E27;
    margin-top: 12px;
    margin-bottom: 40px;
    border-radius: 2px;
}

.why-choose-column h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.highlight-orange {
    color: #FF6E27;
}

.checklist-grid-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.orange-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #FF6E27;
    color: #ffffff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
}

.check-item p {
    font-size: 16.5px;
    font-weight: 600;
    color: #130F3B;
}

.process-flow-column {
    flex: 1.2;
}

.process-flow-column h2 {
    font-size: 38px;
    font-weight: 800;
}

.horizontal-process-nodes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 24px;
    border: 1px solid #F0F0F0;
}

.process-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.node-circle-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #FFF2EC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid #FFE0D1;
}

.node-circle-icon img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
}

.process-node span {
    font-size: 12.5px;
    font-weight: 700;
    color: #130F3B;
    line-height: 1.3;
}

.process-step-arrow {
    font-size: 14px;
    color: #FF6E27;
    font-weight: 700;
    opacity: 0.4;
}

/* ==========================================================================
   SECTION 6: LEADERSHIP TEAM MODULE MATRIX
   ========================================================================== */
.leadership-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.leadership-header-left {
    margin-bottom: 55px;
}

.leadership-header-left h2 {
    font-size: 46px;
    font-weight: 800;
    margin-top: 5px;
}

.leadership-grid-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 360px));
    gap: 30px;
    justify-content: center;
}

.leader-profile-card {
    background: #FEFAF8;
    border: 1px solid #F3ECE8;
    border-radius: 30px;
    padding: 24px;
    text-align: center;
}

.profile-photo-wrapper {
    width: 100%;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 22px;
    background-color: #F0F0F0;
}

.profile-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-profile-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 6px;
}

.role-tag {
    font-size: 15px;
    font-weight: 600;
    color: #888888;
}

/* ==========================================================================
   SECTION 7: TECHNOLOGY SPEC CATEGORIES DASHBOARD (FIXED FIGMA GRID)
   ========================================================================== */
.tech-stack-section {
    padding: 95px 0;
    background-color: #FEFAF8;
}

.tech-summary-p {
    font-size: 18px;
    color: #666666;
    max-width: 650px;
    margin: 15px auto 0 auto;
    line-height: 26px;
}

.tech-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 55px;
}

.tech-category-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #F5EDE8;
    box-shadow: 0 10px 30px rgba(19, 15, 59, 0.02);
    display: flex;
    flex-direction: column;
}

/* Embedded Card Header Replicating Screen 2 Figma Vectors */
.tech-category-box .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.tech-category-box .card-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFF2EC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6E27;
    flex-shrink: 0;
}

.tech-category-box h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #130F3B;
    margin: 0;
    position: relative;
    padding-bottom: 0;
}

.tech-category-box h5::after {
    display: none;
}

.tech-icons-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.tech-icons-flex.wrap-justify {
    gap: 25px 20px;
}

.tech-logo-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 70px;
}

.tech-logo-node img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.tech-logo-node span {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    text-align: center;
}

/* Perfect 50/50 Balanced Row Layout Grid Fix */
.grid-span-media {
    grid-column: span 2;
}

.grid-span-lang {
    grid-column: span 2;
}

/* ==========================================================================
   SECTION 8: LET'S BUILD AMAZING TOGETHER CONVERSION BANNER
   ========================================================================== */
.amazing-together-cta-section {
    padding: 30px 0 80px 0;
}

.cta-gradient-ribbon {
    background: linear-gradient(135deg, #1A134B 0%, #FD5A21 100%);
    border-radius: 30px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 45px rgba(26, 19, 75, 0.12);
}

.ribbon-text-side h2 {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.ribbon-text-side h2 span {
    color: #FF9B5C;
}

.ribbon-desc-side {
    max-width: 480px;
}

.ribbon-desc-side p {
    font-size: 18px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.get-in-touch-btn {
    background-color: #ffffff;
    color: #FD5A21;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

.get-in-touch-btn:hover {
    transform: translateY(-2px);
    background-color: #FEFAF8;
}

/* ==========================================================================
   EXACT CORRESPONDING UNIFIED NAVY FOOTER
   ========================================================================== */
.site-footer {
    background: #0D0A2B;
    color: #ffffff;
    padding: 75px 0 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #FF6E27;
    border-radius: 2px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    display: block;
}

.footer-about-text {
    font-size: 15px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 340px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FF6E27;
}

.contact-info-list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: #FF6E27;
    border-color: #FF6E27;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #FF6E27;
}

/* ==========================================================================
   RESPONSIVE DESIGN ENG PIPELINE CONFIGURATIONS
   ========================================================================== */
@media(max-width:1340px) {
    /* RESPONSIVE TABLET HEADER RULES MATCHING INDEX */
    .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 20px 30px 20px 40px !important; 
        height: auto !important;
        width: 100% !important;
    }
    
    .logo {
        margin: 0 !important;
    }
    
    .logo img {
        width: 130px !important; 
        margin-top: 0 !important;
        margin-left: 0 !important; 
    }
    
    .menu-toggle {
        display: block !important;
        width: 26px !important;
        height: 3px !important;
        background: #13113C !important;
        box-shadow: 0 8px 0 #13113C, 0 -8px 0 #13113C !important;
        margin-left: 20px !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        position: relative;
        transition: all 0.25s ease-in-out;
    }

    .menu-toggle.active {
        background: transparent !important;
        box-shadow: none !important;
    }
    .menu-toggle.active::before,
    .menu-toggle.active::after {
        content: '';
        position: absolute;
        width: 26px;
        height: 3px;
        background: #13113C;
        left: 0;
    }
    .menu-toggle.active::before { transform: rotate(45deg); top: 0; }
    .menu-toggle.active::after { transform: rotate(-45deg); top: 0; }
    
    .nav-links {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
        position: absolute !important;
        top: 85px !important;
        left: auto !important;                  
        right: 40px !important;                 
        width: 50% !important;                  
        height: auto !important;
        background: #13113C !important;         
        flex-direction: column !important;
        align-items: center !important;
        padding: 30px 20px !important;
        gap: 24px !important;
        border-radius: 24px !important;
        border: none !important;                
        box-shadow: 0 20px 45px rgba(19, 15, 59, 0.25) !important;
        z-index: 9999 !important;
        margin: 0 !important;
    }
    
    .nav-links.active a {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #ffffff !important;              
        width: 100%;
        text-align: center;
        padding: 4px 0;
    }
    
    .talk-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 140px !important;
        height: 46px !important;
        font-size: 14px !important;
        margin-top: 0 !important;
        margin-left: auto !important;
    }
}

@media(max-width: 768px) {
    /* RESPONSIVE MOBILE HEADER RULES MATCHING INDEX */
    .navbar {
        padding: 16px 20px 16px 24px !important; 
    }
    
    .logo img {
        width: 110px !important; 
    }
    
    .nav-links.active {
        top: 75px !important;
        left: auto !important;          
        right: 24px !important;         
        width: 50% !important;          
    }
    
    .talk-btn {
        width: 120px !important;
        height: 40px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 1200px) {
    .hero-split-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons-row, .hero-right-graphic {
        justify-content: center;
    }
    .hero-right-graphic {
        margin-top: 50px;
        width: 100%;
    }
    .main-image-frame {
        margin: 0 auto;
    }
    .hero-main-photo {
        min-height: 320px;
        background-color: #F3ECE8;
        object-fit: cover;
    }
    .excellence-floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }
    .stats-card-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .mission-vision-split, .dynamic-split-layout {
        flex-direction: column;
    }
    .mission-right-cards, .why-choose-column, .process-flow-column {
        width: 100%;
    }
    .solutions-grid-six, .tech-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-span-media, .grid-span-lang {
        grid-column: span 2;
    }
    .horizontal-process-nodes {
        padding: 25px 15px;
    }
    .node-circle-icon {
        width: 44px;
        height: 44px;
    }
    .process-node span {
        font-size: 11px;
    }
    .leadership-grid-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .profile-photo-wrapper {
        height: 240px;
    }
    .cta-gradient-ribbon {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .branding-tagline {
        font-size: 38px;
    }
    .stats-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .checklist-grid-dual, .tech-dashboard-grid {
        grid-template-columns: 1fr;
    }
    .solutions-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }
    .horizontal-process-nodes {
        padding: 20px 10px;
        gap: 2px;
    }
    .node-circle-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }
    .process-node span {
        font-size: 10px;
    }
    .process-step-arrow {
        font-size: 11px;
    }
    .leadership-grid-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .profile-photo-wrapper {
        height: 220px;
    }
    .grid-span-media, .grid-span-lang {
        grid-column: span 1;
    }
    .ribbon-text-side h2 {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .mission-right-cards {
        flex-direction: column;
    }
    .solutions-grid-six {
        grid-template-columns: 1fr;
    }
    .horizontal-process-nodes {
        flex-direction: column;
        gap: 20px;
        padding: 35px 25px;
    }
    .node-circle-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }
    .process-node span {
        font-size: 12.5px;
    }
    .process-step-arrow {
        transform: rotate(90deg);
        font-size: 14px;
    }
    .leadership-grid-row {
        grid-template-columns: repeat(3, 290px);
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .leadership-grid-row::-webkit-scrollbar {
        display: none;
    }
    .profile-photo-wrapper {
        height: 250px;
    }
}